-
Notifications
You must be signed in to change notification settings - Fork 640
TypeScript: support for "properties:static" #4312
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
21987b4
to
d656651
Compare
parsers/typescript.c
Outdated
} tsKind; | ||
|
||
typedef enum { | ||
F_STATIC, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"static" is one of the values that the properties field can take.
So, F_PROPERTIES is better. So, for example, we can append "inline" to the field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I fix this in jscript.c
, too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, please.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
JavaScript: fix constant name to be consistent
a3563a3
to
0d29c0b
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4312 +/- ##
==========================================
- Coverage 85.88% 85.87% -0.01%
==========================================
Files 248 248
Lines 63602 63622 +20
==========================================
+ Hits 54624 54638 +14
- Misses 8978 8984 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
I will take over this. |
See #4317. |
Support for
properties:static
, like what I added to the JavaScript parserReplaces #4311